do not use bundler as per Ruby policy
authorLaszlo Boszormenyi (GCS) <gcs@debian.org>
Tue, 2 Dec 2025 18:03:25 +0000 (19:03 +0100)
committerLaszlo Boszormenyi (GCS) <gcs@debian.org>
Tue, 2 Dec 2025 18:03:25 +0000 (19:03 +0100)
Bug-Debian: https://bugs.debian.org/804668
Last-Update: 2019-10-23

Gbp-Pq: Name no_bundler_use.patch

lib/rb/Makefile.am
test/rb/Makefile.am

index ab5d903fe2a354c4978484b5d799e3a89f564e91..e312d1077240a7a4a939f8186ac4f081c4f7349a 100644 (file)
@@ -22,20 +22,24 @@ DESTDIR ?= /
 if HAVE_BUNDLER
 
 all-local:
-       $(BUNDLER) install
-       $(BUNDLER) exec rake build_ext
+       echo Do not use bundler for all-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake build_ext
 
 install-exec-hook:
-       $(BUNDLER) exec rake install
+       echo Do not use bundler for install-exec-hook
+#      $(BUNDLER) exec rake install
 
 clean-local:
-       $(BUNDLER) install
-       $(BUNDLER) exec rake clean
+       echo Do not use bundler for clean-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake clean
        $(RM) -r spec/gen-rb/
 
 check-local: all
-       $(BUNDLER) install
-       $(BUNDLER) exec rake
+       echo Do not use bundler for check-local
+#      $(BUNDLER) install
+#      $(BUNDLER) exec rake
 
 endif
 
index 9c5d557fd0db0a158b98baab2e93da9950ec78d1..3c31364ce20297e59cb9dfbf9d312912169d626b 100644 (file)
@@ -26,8 +26,9 @@ precross: stubs
 
 check: stubs
 if HAVE_BUNDLER
-       $(BUNDLER) install
-       $(BUNDLER) exec $(RUBY) -I. test_suite.rb
+       echo Do not use bundler for check
+#      $(BUNDLER) install
+#      $(BUNDLER) exec $(RUBY) -I. test_suite.rb
 endif
 
 clean-local: